Installation Note 55101: "Error: No clusters were selected because there is not enough data" occurs when you are using SAS® Asset Performance Analytics
The following error appears in the “Define and Analyze Events” step of “Root Cause Analysis” in a Polish installation of SAS Asset Performance Analytics:
Error: No clusters were selected because there is not enough data or there is bad information in the data. Add more tags or more days to the data selection.
This error occurs because the VARCLUS procedure output table called RSquare contains a column named Skupienie instead of Cluster.
To work around this issue, modify the file pam_rca_defineAnalyzeEvents.sas in the following location:
SASHome\SASFoundation\9.4\pamsrvmva\sasstp\pam_rca_defineAnalyzeEvents.sas
This fix can be implemented after configuration is completed for SAS Asset Performance Analytics 6.1 M2.
The fix is to add an equal symbol ( = ) to the IF statement in the following DATA step. The code below includes the fix:
data work.rsq_pearson(drop=cluster2);
set work.rsq_pearson;
cluster2 = upcase(cluster);
if substr(cluster2,1,9) = 'SKUPIENIE' then do;
cluster = 'Cluster ' || substr(cluster,11);
end;
run;
Operating System and Release Information
SAS System | SAS Asset Performance Analytics | Microsoft® Windows® for x64 | 6.1 | 6.2_M1 | 9.4 TS1M2 | 9.4 TS1M4 |
Linux for x64 | 6.1 | 6.2_M1 | 9.4 TS1M2 | 9.4 TS1M4 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
The error "No clusters were selected because there is not enough data" in "Root Cause Analysis" occurs when you are using SAS Asset Performance Analytics 6.1 M2.
Type: | Installation Note |
Priority: | high |
Date Modified: | 2018-05-11 10:35:12 |
Date Created: | 2015-01-29 15:12:45 |